home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Exchange
/
CD Exchange - Volume 1.iso
/
utils
/
misc
/
ace
/
ace-2.0.lha
/
PRGS.lha
/
ExternFunc
/
func.b
next >
Wrap
Text File
|
1994-01-16
|
281b
|
19 lines
{*
** A test of external function use.
** sub.c (compiled and assembled to produce sub.o)
** is used in conjunction with this:
**
** bas -O func sub.o
*}
deflng x,y,z
external function subtract
input "enter x: ",x
input "enter y: ",y
z=0
subtract(x,y,@z)
print x;"-";y;"=";z